home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / tutor / dosguide.exe / HELPDOS.ZIP / COMP.HLP < prev    next >
Text File  |  1988-03-03  |  4KB  |  100 lines

  1. ------------------------  COMP - External DOS Command  -------------------------
  2.  
  3. COMP compares two files or two sets of files to see if their contents match.
  4.  
  5. FORMAT:   COMP [d1:][path1][filename1[.ext1]]  [d2:][path2][filename2[.ext2]]
  6.  
  7. REMARKS:
  8.  
  9.    [d1:][path1][filename1[.ext1]] - describes the primary set of files.  If d1
  10.                                     is omitted, the default drive is assumed. If
  11.                                     path1 is omitted, the current directory is
  12.                                     assumed.
  13.  
  14.    [d2:][path2][filename2[.ext2]] - describes the secondary set of files.  If d2
  15.                                     is omitted, the default drive is assumed.
  16.                                     If path2 is omitted, the current directory
  17.                                     is assumed.
  18.  
  19.    The primary set of files are compared, one by one, to the secondary set of
  20.    files and any differences are reported.
  21.  
  22.    Global characters (* and ?) are allowed in both sets of file specifications.
  23.  
  24.    If COMP is entered with no parameters, or if the second parameter is missing,
  25.    you will be prompted for them.  You will also be prompted for the file
  26.    specifications if the first one is not found.
  27.  
  28.    If either parameter contains only a drive letter or a path and no filename,
  29.    then *.* (all filenames) will be assumed.
  30.  
  31.    The paths and filenames are displayed as files are compared.  If a file
  32.    specified in the secondary set of files is not found, an error message is
  33.    displayed.  An error message is also displayed if the files to be compared
  34.    are not the same size or if a specified directory path is invalid.
  35.  
  36.    If the comparison detects mismatching information in the files being
  37.    compared, a message will be displayed.  The message has the form:
  38.  
  39.           Compare error at offset xxxxxxxx
  40.           File1 = y
  41.           File2 = z
  42.  
  43.        Where: xxxxxxxx is the offset (number of bytes) into the files.  File1 is
  44.               the filename of the first file.  File2 is the filename of the
  45.               second file.  y and z are the hexadecimal values of the
  46.               mismatching information in the two files.
  47.  
  48.    If ten unequal comparisons are detected, processing ends with the message:
  49.  
  50.           10 Mismatches - ending compare
  51.  
  52.    If all information in all compared files match, COMP displays:
  53.  
  54.           Files compare OK
  55.  
  56.    When COMP completes the comparisons, you will be prompted:
  57.  
  58.           Compare more files (Y/N)?
  59.  
  60.           If you enter N, processing ends.  If you enter Y, COMP will prompt
  61.           you for the next set of files to be compared.
  62.  
  63.    COMP does not wait for you to insert a diskette (as does DISKCOPY, for
  64.    example).  If you want to compare files that are not on the same diskette as
  65.    the COMP command, you should enter COMP with no parameters.  You may then
  66.    insert the appropriate diskette when COMP prompts you for the files to be
  67.    compared.
  68.  
  69.  
  70. NOTE: In DOS Version 3, you may preface COMP with the drive letter and directory
  71.    path, [d:][path], where the command file can be found.
  72.  
  73.  
  74. EXAMPLES:
  75.  
  76. Compare file MYFILE in the current directory of drive A to MYFILE in the
  77. current directory of drive B.  The default drive is C:
  78.  
  79.           COMP A:MYFILE B:MYFILE
  80.  
  81.  
  82. Compare all files on drive A that have an extension of .DAT to files of the same
  83. name and extension on drive B.  Both sets of files are in the current directory
  84. of the respective disks.  The default drive is A:
  85.  
  86.           COMP *.DAT B:
  87.  
  88.  
  89. Compare all files in the current directory of drive A to all files of the same
  90. name in the current directory of drive B:
  91.  
  92.           COMP A: B:
  93.  
  94.  
  95. Compare all files in the BUDGET directory of drive A to all files of the same
  96. name in the DATA directory of drive B.  Both BUDGET and DATA are subdirectories
  97. of the root level on their respective disks:
  98.  
  99.           COMP A:\BUDGET B:\DATA
  100.